Package-level declarations

Types

Link copied to clipboard
class ValidatedByte @JvmOverloads constructor(    defaultValue: Byte,     maxValue: Byte,     minValue: Byte,     widgetType: ValidatedNumber.WidgetType = if(maxValue == Byte.MAX_VALUE || minValue == Byte.MIN_VALUE) WidgetType.TEXTBOX else WidgetType.SLIDER) : ValidatedNumber<Byte>

A validated byte number. This field is a wrapper of bytes that is both a java.util.function.Supplier and java.util.function.Consumer of type Byte

Link copied to clipboard
class ValidatedDouble @JvmOverloads constructor(    defaultValue: Double,     maxValue: Double,     minValue: Double,     widgetType: ValidatedNumber.WidgetType = if(maxValue == Double.MAX_VALUE || minValue == -Double.MAX_VALUE) WidgetType.TEXTBOX else WidgetType.SLIDER) : ValidatedNumber<Double>

A validated double number. This field is a wrapper of doubles that is both a java.util.function.Supplier and java.util.function.Consumer of type Double

Link copied to clipboard
class ValidatedFloat @JvmOverloads constructor(    defaultValue: Float,     maxValue: Float,     minValue: Float,     widgetType: ValidatedNumber.WidgetType = if(maxValue == Float.MAX_VALUE || minValue == -Float.MAX_VALUE) WidgetType.TEXTBOX else WidgetType.SLIDER) : ValidatedNumber<Float>

A validated float number. This field is a wrapper of floats that is both a java.util.function.Supplier and java.util.function.Consumer of type Float

Link copied to clipboard
class ValidatedInt @JvmOverloads constructor(    defaultValue: Int,     maxValue: Int,     minValue: Int,     widgetType: ValidatedNumber.WidgetType = if(maxValue == Int.MAX_VALUE || minValue == Int.MIN_VALUE) WidgetType.TEXTBOX else WidgetType.SLIDER) : ValidatedNumber<Int>

A validated integer number. This field is a wrapper of integers that is both a java.util.function.Supplier and java.util.function.Consumer of type Int

Link copied to clipboard
class ValidatedLong @JvmOverloads constructor(    defaultValue: Long,     maxValue: Long,     minValue: Long,     widgetType: ValidatedNumber.WidgetType = if(maxValue == Long.MAX_VALUE || minValue == Long.MIN_VALUE) WidgetType.TEXTBOX else WidgetType.SLIDER) : ValidatedNumber<Long>

A validated long number. This field is a wrapper of longs that is both a java.util.function.Supplier and java.util.function.Consumer of type Long

Link copied to clipboard
Link copied to clipboard
class ValidatedShort @JvmOverloads constructor(    defaultValue: Short,     maxValue: Short,     minValue: Short,     widgetType: ValidatedNumber.WidgetType = if(maxValue == Short.MAX_VALUE || minValue == Short.MIN_VALUE) WidgetType.TEXTBOX else WidgetType.SLIDER) : ValidatedNumber<Short>

A validated short number. This field is a wrapper of shorts that is both a java.util.function.Supplier and java.util.function.Consumer of type Short